chore: release packages 📦#47
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
d2b96aa to
03391cf
Compare
03391cf to
e4f465e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@fujocoded/authproto@0.4.0
Minor Changes
#46
4c266d6Thanks @essential-randomness!Add scoped login controls, an Authorize component for requesting extra
permissions after login, and helpers for building ATProto permission scopes.
Breaking changes
of
/. Setredirects.afterLoginandredirects.afterLogoutto/to keepthe old behavior.
<Login />no longer defaults the input placeholder tohandle.bsky.social;pass
placeholder="handle.bsky.social"if you want that exact prompt.Astro.locals.loggedInUsernow includes a requiredscopesarray. Updatetests, mocks, and custom local assignments to include
scopes: []when nogrants are needed.
@fujocoded/remark-alt-text-files@0.1.0
Minor Changes
282f48aThanks @essential-randomness!Adds opt-in source metadata for loaded alt text files. Set
targetAttributetotrueto writedata-alt-source, or pass a custom attribute name. UsesourceLocationto prepend a path or URL, or pass a function when each imageneeds its own source value.
Adds
missingFilehandling so missing alt text files can error, warn, or beignored. Missing-file messages now name the image and the alt text file path the
plugin tried to load.
@fujocoded/remark-capitalize-titles@0.2.0
Minor Changes
41f6902Thanks @essential-randomness!Capitalize Astro frontmatter
titlefields by default, with afrontmatterTitle: falseoption for callers that only want Markdown heading capitalization. Also preserveNodeJSas a default capitalization.Patch Changes
e0c0ffdThanks @essential-randomness!Export
capitalizeTitlefor title-casing a standalone string outside a Markdowntree: pass the title, an optional
{ special }override, and have your Markdownstring capitalized while preserving inline code, emphasis, and escapes.
Component
titleprops now run through this same Markdown path, so inlinecode spans inside a title keep their exact casing instead of being lowercased.
Also extends the default capitalization list with
JavaScript,HTML, andCSS.@fujocoded/remark-excalidraw@0.1.0
Minor Changes
e05af1eThanks @essential-randomness!Automatically import the Excalidraw renderer in generated MDX, preserve string
data attributes from transformed images, and add wrapper options for rendering
drawings inside another MDX component.
This also moves the package to an ESM-only tsdown build, removing the CommonJS
export entries.
@fujocoded/astro-dev-only@0.0.5
Patch Changes
448fe2dThanks @essential-randomness!Handle file URL paths correctly when removing dev-only build output and escape
string route patterns before passing them to middleware.
@fujocoded/zod-transform-socials@0.1.1
Patch Changes
9ffed2bThanks @essential-randomness!Tighten and extend Bluesky profile URL matching. The
bsky.app/bsky.socialprofile form now validates the handle as a real domain and additionally
recognizes DID handles such as
did:plc:…anddid:web:….Also escapes the literal dots in every platform's match pattern so lookalike
hosts no longer match by accident.
9ffed2bThanks @essential-randomness!Recognize unscoped npm packages. The npm match previously required a scope, so
URLs like
npmjs.com/package/social-linksfell through tocustom; they nowresolve to the
npmplatform. Underscores are also accepted in package names.#48
f1d01c7Thanks @essential-randomness!Exports
SocialLinkObjectSchemaso projects can extend the object form of asocial link without rebuilding the whole schema.
SocialLinkInputSchemais alsoavailable as the clearer name for the default one-item input schema, with
matching
SocialLinkObjectandSocialLinkInputtypes.Adds standalone examples for preserving custom fields like
labelthroughthe transform.